home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ptrp25dm.zip / TEST6.TRP < prev    next >
Text File  |  1995-01-17  |  233b  |  12 lines

  1. procedure main
  2.         local 
  3.                 v : integer;
  4.                 x : word = 1;
  5.         endvar
  6.         v := 15;
  7.         while (x < v)
  8.                 writeln(x)
  9.                 x := x + 1
  10.         endWhile
  11. endproc
  12.